crypto/elliptic.nistCurve.params (field)
15 uses
crypto/elliptic (current package)
nistec.go#L18: p224.params = &CurveParams{
nistec.go#L39: p256.params = &CurveParams{
nistec.go#L56: p384.params = &CurveParams{
nistec.go#L78: p521.params = &CurveParams{
nistec.go#L112: params *CurveParams
nistec.go#L126: return curve.params
nistec.go#L149: if x.BitLen() > curve.params.BitSize || y.BitLen() > curve.params.BitSize {
nistec.go#L153: byteLen := (curve.params.BitSize + 7) / 8
nistec.go#L168: byteLen := (curve.params.BitSize + 7) / 8
nistec.go#L197: byteSize := (curve.params.N.BitLen() + 7) / 8
nistec.go#L203: s.Mod(s, curve.params.N)
nistec.go#L263: byteLen := (curve.params.BitSize + 7) / 8
nistec_p256.go#L19: if k.Cmp(c.params.N) >= 0 {
nistec_p256.go#L21: k = new(big.Int).Mod(k, c.params.N)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |